home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource4 / 258_01 / formout.c < prev    next >
Text File  |  1988-03-30  |  512b  |  17 lines

  1.                                         /* Chapter 10 - Program 1 */
  2. #include "stdio.h"
  3. main()
  4. {
  5. FILE *fp;
  6. char stuff[25];
  7. int index;
  8.  
  9.    fp = fopen("TENLINES.TXT","w");   /* open for writing */
  10.    strcpy(stuff,"This is an example line.");
  11.  
  12.    for (index = 1;index <= 10;index++)
  13.       fprintf(fp,"%s  Line number %d\n",stuff,index);
  14.  
  15.    fclose(fp);    /* close the file before ending program */
  16. }
  17.